forked from mirrors/nixpkgs
hashit: init at 0.2.0
This commit is contained in:
parent
5a9d853d22
commit
93d68d85f1
39
pkgs/tools/misc/hashit/default.nix
Normal file
39
pkgs/tools/misc/hashit/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue