depot/third_party/nixpkgs/pkgs/servers/nas/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

58 lines
966 B
Nix

{ lib
, stdenv
, fetchurl
, bison
, flex
, gccmakedep
, imake
, libXau
, libXaw
, libXext
, libXpm
, libXt
, xorgcffiles
, xorgproto
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nas";
version = "1.9.5";
src = fetchurl {
url = "mirror://sourceforge/nas/nas-${finalAttrs.version}.tar.gz";
hash = "sha256-t4hK+zj+7AOhlr07fpxHuAPIMOzRDXRV6cl+Eiw3lEw=";
};
nativeBuildInputs = [
bison
flex
gccmakedep
imake
];
buildInputs = [
libXau
libXaw
libXext
libXpm
libXt
xorgproto
];
buildFlags = [ "WORLDOPTS=" "World" ];
installFlags = [ "LDLIBS=-lfl" "DESTDIR=${placeholder "out"}" ];
postInstall = ''
mv $out/${xorgcffiles}/* $out
rm -fr $out/nix
'';
meta = {
homepage = "http://radscan.com/nas.html";
description = "Network transparent, client/server audio transport system";
license = lib.licenses.mit;
maintainers = [ ];
platforms = lib.platforms.linux;
};
})