biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / acr / default.nix
blob2ddc23f51c3c0b10c188b313d7aef1a4c524df70
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation (finalAttrs: {
7   pname = "acr";
8   version = "2.1.2";
10   src = fetchFromGitHub {
11     owner = "radareorg";
12     repo = "acr";
13     rev = finalAttrs.version;
14     hash = "sha256-xKB9zBw9sX+z/yBzvfIzQPyOHzlCAGfGLyuLGRoyWbg=";
15   };
17   preConfigure = ''
18     chmod +x ./autogen.sh && ./autogen.sh
19   '';
21   meta = {
22     homepage = "https://github.com/radareorg/acr/";
23     description = "Pure shell autoconf replacement";
24     longDescription = ''
25       ACR tries to replace autoconf functionality generating a full-compatible
26       'configure' script (runtime flags). But using shell-script instead of
27       m4. This means that ACR is faster, smaller and easy to use.
28     '';
29     license = lib.licenses.gpl2Plus;
30     maintainers = with lib.maintainers; [ AndersonTorres ];
31     platforms = lib.platforms.all;
32   };