mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
f0e64ce16f
Manual migration for the sake of by-name migration is no longer discouraged since #340235.
34 lines
861 B
Nix
34 lines
861 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "acr";
|
|
version = "2.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "radareorg";
|
|
repo = "acr";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-RPqbL21gxM66Wjov0QVuiFJNAfia+xxF53fNdksU5fQ=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
chmod +x ./autogen.sh && ./autogen.sh
|
|
'';
|
|
|
|
meta = {
|
|
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;
|
|
};
|
|
})
|