Fairly complete set of packages for Pure
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, pkgconfig, pure, avahi }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
baseName = "avahi";
|
||||
version = "0.3";
|
||||
name = "pure-${baseName}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
|
||||
sha256 = "5fac8a6e3a54e45648ceb207ee0061b22eac8c4e668b8d53f13eb338b09c9160";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ];
|
||||
propagatedBuildInputs = [ pure avahi ];
|
||||
makeFlags = "libdir=$(out)/lib prefix=$(out)/";
|
||||
setupHook = ../generic-setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
description = "A digital audio interface for the Pure programming language";
|
||||
homepage = http://puredocs.bitbucket.org/pure-avahi.html;
|
||||
license = stdenv.lib.licenses.lgpl3Plus;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ asppsa ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user