Merge pull request #261810 from 3JlOy-PYCCKUi/grun

grun: init at 0.9.3

authored by

Weijia Wang and committed by
GitHub
6fbf2aec cddf3ed1

+41
+41
pkgs/by-name/gr/grun/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , gtk2 5 + , pkg-config 6 + , autoreconfHook 7 + }: 8 + 9 + stdenv.mkDerivation { 10 + pname = "grun"; 11 + version = "0.9.3"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "lrgc"; 15 + repo = "grun"; 16 + rev = "release_0_9_3"; 17 + hash = "sha256-VbvX0wrgMIPmPnu3aQdtQ6H0X3umi8aJ42QvmmeMrJ0="; 18 + }; 19 + 20 + buildInputs = [ 21 + gtk2 22 + ]; 23 + 24 + nativeBuildInputs = [ 25 + pkg-config 26 + autoreconfHook 27 + ]; 28 + 29 + makeFlags = [ 30 + "PREFIX=${placeholder "out"}" 31 + ]; 32 + 33 + meta = { 34 + description = "An application launcher written in C and using GTK for the interface"; 35 + homepage = "https://github.com/lrgc/grun"; 36 + platforms = lib.platforms.linux; 37 + license = with lib.licenses; [ gpl2Only ]; 38 + maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; 39 + }; 40 + } 41 +