1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

hashit: init at 0.2.0

This commit is contained in:
worldofpeace 2018-09-08 06:13:13 -04:00
parent 5a9d853d22
commit 93d68d85f1
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, cmake, vala, python3, gnome3, gtk3, granite, gobjectIntrospection, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "hashit";
version = "0.2.0";
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "artemanufrij";
repo = pname;
rev = version;
sha256 = "1d2g7cm7hhs354waidak9xkhhcvqlwnsl9d0bar9p82gfnpjdg7v";
};
nativeBuildInputs = [
gobjectIntrospection
meson
ninja
pkgconfig
python3
vala
wrapGAppsHook
];
buildInputs = [
granite
gtk3
gnome3.libgee
];
meta = with stdenv.lib; {
description = "A simple app for checking usual checksums";
homepage = https://github.com/artemanufrij/hashit;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.linux;
};
}

View file

@ -16853,6 +16853,8 @@ with pkgs;
inherit (gnome2) gnome_python;
};
hashit = callPackage ../tools/misc/hashit { };
hello = callPackage ../applications/misc/hello { };
hello-unfree = callPackage ../applications/misc/hello-unfree { };