nixpkgs/pkgs/development/tools/misc/acr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
849 B
Nix
Raw Normal View History

2022-04-11 01:50:16 +01:00
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation (self: {
2022-04-11 01:50:16 +01:00
pname = "acr";
2023-03-07 21:24:38 +00:00
version = "2.1.1";
2022-04-11 01:50:16 +01:00
src = fetchFromGitHub {
owner = "radareorg";
repo = "acr";
rev = self.version;
2023-03-07 21:24:38 +00:00
hash = "sha256-JReYgIqQISQuLPd4pUbqbKtBOXT0/YJCn9czz2VTVBs=";
2022-04-11 01:50:16 +01:00
};
preConfigure = ''
chmod +x ./autogen.sh && ./autogen.sh
'';
meta = {
2022-04-11 01:50:16 +01:00
homepage = "https://github.com/radareorg/acr/";
description = "Pure shell autoconf replacement";
longDescription = ''
ACR tries to replace autoconf functionality generating a full-compatible
'configure' script (runtime flags). But using shell-script instead of
m4. This means that ACR is faster, smaller and easy to use.
'';
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.all;
2022-04-11 01:50:16 +01:00
};
})