nixpkgs/pkgs/servers/nas/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

59 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;
};
})