nixpkgs/pkgs/servers/nas/default.nix

34 lines
909 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, imake, bison, flex, gccmakedep
, xorgproto, libXau, libXt, libXext, libXaw, libXpm, xorgcffiles }:
2017-06-28 11:13:20 +00:00
stdenv.mkDerivation rec {
2017-06-28 11:13:20 +00:00
pname = "nas";
version = "1.9.4";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.src.tar.gz";
sha256 = "17dk0ckm6mp1ajc0cd6bwyi638ynw2f6bhbn7gynrs0wfmiyldng";
};
nativeBuildInputs = [ imake bison flex gccmakedep ];
2017-06-28 11:13:20 +00:00
buildInputs = [ xorgproto libXau libXt libXext libXaw libXpm ];
2017-06-28 11:13:20 +00:00
2018-11-28 18:05:08 +00:00
buildFlags = [ "WORLDOPTS=" "World" ];
2017-06-28 11:13:20 +00:00
2018-11-28 18:05:08 +00:00
installFlags = [ "LDLIBS=-lfl" "DESTDIR=${placeholder "out"}" ];
2017-06-28 11:13:20 +00:00
postInstall = ''
mv $out/${xorgcffiles}/* $out
rm -r $out/nix
'';
meta = with lib; {
2017-06-28 11:13:20 +00:00
description = "A network transparent, client/server audio transport system";
homepage = "http://radscan.com/nas.html";
2017-06-28 11:13:20 +00:00
license = licenses.mit;
maintainers = [ ];
2017-06-28 11:13:20 +00:00
platforms = platforms.linux;
};
}