depot/pkgs/by-name/gr/grun/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

42 lines
776 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, gtk2
, pkg-config
, autoreconfHook
}:
stdenv.mkDerivation {
pname = "grun";
version = "0.9.3";
src = fetchFromGitHub {
owner = "lrgc";
repo = "grun";
rev = "release_0_9_3";
hash = "sha256-VbvX0wrgMIPmPnu3aQdtQ6H0X3umi8aJ42QvmmeMrJ0=";
};
buildInputs = [
gtk2
];
nativeBuildInputs = [
pkg-config
autoreconfHook
];
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = {
description = "Application launcher written in C and using GTK for the interface";
mainProgram = "grun";
homepage = "https://github.com/lrgc/grun";
platforms = lib.platforms.linux;
license = with lib.licenses; [ gpl2Only ];
maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ];
};
}