biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / graphics / scrot / default.nix
blobef8a9e29588eff4fa365e02e1b848e751ee8347b
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , imlib2
5 , autoreconfHook
6 , autoconf-archive
7 , libX11
8 , libXext
9 , libXfixes
10 , libXcomposite
11 , libXinerama
12 , pkg-config
13 , libbsd
16 stdenv.mkDerivation rec {
17   pname = "scrot";
18   version = "1.11.1";
20   src = fetchFromGitHub {
21     owner = "resurrecting-open-source-projects";
22     repo = pname;
23     rev = version;
24     sha256 = "sha256-MUmvzZMzzKKw5GjOUhpdrMIgKO9/i9RDqDtTsSghd18=";
25   };
27   nativeBuildInputs = [
28     autoreconfHook
29     autoconf-archive
30     pkg-config
31   ];
33   buildInputs = [
34     imlib2
35     libX11
36     libXext
37     libXfixes
38     libXcomposite
39     libXinerama
40     libbsd
41   ];
43   meta = with lib; {
44     homepage = "https://github.com/resurrecting-open-source-projects/scrot";
45     description = "Command-line screen capture utility";
46     mainProgram = "scrot";
47     platforms = platforms.linux;
48     maintainers = [ ];
49     license = licenses.mitAdvertising;
50   };