bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
26 lines
693 B
Nix
26 lines
693 B
Nix
{ stdenv, fetchsvn, autoconf, automake, liblscp, libtool, pkgconfig
|
|
, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qsampler-svn-${version}";
|
|
version = "2342";
|
|
|
|
src = fetchsvn {
|
|
url = "https://svn.linuxsampler.org/svn/qsampler/trunk";
|
|
rev = "${version}";
|
|
sha256 = "17w3vgpgfmvl11wsd5ndk9zdggl3gbzv3wbd45dyf2al4i0miqnx";
|
|
};
|
|
|
|
buildInputs = [ autoconf automake liblscp libtool pkgconfig qt4 ];
|
|
|
|
preConfigure = "make -f Makefile.svn";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.linuxsampler.org;
|
|
description = "Graphical frontend to LinuxSampler";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|