mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
9820cb1bf2
changes: * buildPhase = "true" * buildPhase = ":"
25 lines
501 B
Nix
25 lines
501 B
Nix
{ stdenv, fetchurl, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rt-${version}";
|
|
|
|
version = "4.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.bestpractical.com/pub/rt/release/${name}.tar.gz";
|
|
sha256 = "1hgz50fxv9zdcngww083aqh8vzyk148lm7mcivxflpnsqfw3696x";
|
|
};
|
|
|
|
patches = [ ./override-generated.patch ];
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -a {bin,docs,etc,lib,sbin,share} $out
|
|
find $out -name '*.in' -exec rm '{}' \;
|
|
'';
|
|
}
|