lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 33 lines 909 B view raw
1{ lib, stdenv, fetchurl, imake, bison, flex, gccmakedep 2, xorgproto, libXau, libXt, libXext, libXaw, libXpm, xorgcffiles }: 3 4stdenv.mkDerivation rec { 5 pname = "nas"; 6 version = "1.9.4"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/${pname}/${pname}-${version}.src.tar.gz"; 10 sha256 = "17dk0ckm6mp1ajc0cd6bwyi638ynw2f6bhbn7gynrs0wfmiyldng"; 11 }; 12 13 nativeBuildInputs = [ imake bison flex gccmakedep ]; 14 15 buildInputs = [ xorgproto libXau libXt libXext libXaw libXpm ]; 16 17 buildFlags = [ "WORLDOPTS=" "World" ]; 18 19 installFlags = [ "LDLIBS=-lfl" "DESTDIR=${placeholder "out"}" ]; 20 21 postInstall = '' 22 mv $out/${xorgcffiles}/* $out 23 rm -r $out/nix 24 ''; 25 26 meta = with lib; { 27 description = "A network transparent, client/server audio transport system"; 28 homepage = "http://radscan.com/nas.html"; 29 license = licenses.mit; 30 maintainers = [ ]; 31 platforms = platforms.linux; 32 }; 33}