update default.nix

master
Michele Guerini Rocco 2019-06-26 10:21:01 +02:00
parent 7d27d42342
commit b62f7df8be
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450
1 changed files with 3 additions and 3 deletions

View File

@ -5,18 +5,18 @@ let
inherit (nixpkgs) pkgs;
f = { mkDerivation, base, configurator, directory, filepath, mtl
, selda, selda-sqlite, stdenv, text, xdg-basedir
, selda, selda-sqlite, stdenv, text
}:
mkDerivation {
pname = "bisc";
version = "0.1.0.0";
version = "0.2.1.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base configurator directory filepath mtl selda selda-sqlite text
xdg-basedir
];
homepage = "https://maxwell.ydns.eu/git/rnhmjoj/bisc";
description = "A small tool that clears qutebrowser cookies";
license = stdenv.lib.licenses.gpl3;
};