Zathura config + remove old packages

This commit is contained in:
Filippo Berto 2021-07-02 12:29:14 +02:00
parent 247185eafe
commit 632185d7f8
10 changed files with 68 additions and 37 deletions

View file

@ -5,10 +5,9 @@
let
callPackage = pkgs.lib.callPackageWith (pkgs // self);
self = {
gallery-tagger = callPackage ./gallery-tagger {};
lockscreen = callPackage ./lockscreen {};
update-background = callPackage ./update-background {};
joystickwake = callPackage ./joystickwake {};
# joystickwake = callPackage ./joystickwake {};
};
in
(self)

View file

@ -1,23 +0,0 @@
{ lib, stdenv,
cargo,
rustc,
rustPlatform,
gexiv2,
glib,
gcc,
pkg-config
}:
rustPlatform.buildRustPackage rec {
version = "0.1.2";
pname = "gallery-tagger";
nativeBuildInputs = [ cargo rustc gcc pkg-config ];
buildInputs = [ gexiv2.dev glib.dev ];
src = builtins.fetchGit {
url = "git@gitlab.com:bertof/galllery-tagger.git";
ref = "5389813e62dfa790cf20441242d8a7d89f345fa9";
};
doCheck = true;
cargoSha256 = "sha256:0nskc778m8nj2v4qidq4jzrb3ac8yg9bjc1l546c1k984321k187";
}