diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-08-02 20:56:44 +0200 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-08-02 20:56:44 +0200 |
commit | 448046fd26c4f04cecde5b7496eaff746981ec67 (patch) | |
tree | 9b4c64cf427be9ba99514a46ceac1c2d92a1561f /trivstream.nix | |
download | trivstream-448046fd26c4f04cecde5b7496eaff746981ec67.tar trivstream-448046fd26c4f04cecde5b7496eaff746981ec67.tar.gz trivstream-448046fd26c4f04cecde5b7496eaff746981ec67.tar.bz2 trivstream-448046fd26c4f04cecde5b7496eaff746981ec67.tar.xz trivstream-448046fd26c4f04cecde5b7496eaff746981ec67.zip |
Framework
Diffstat (limited to 'trivstream.nix')
-rw-r--r-- | trivstream.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/trivstream.nix b/trivstream.nix new file mode 100644 index 0000000..2521a88 --- /dev/null +++ b/trivstream.nix | |||
@@ -0,0 +1,11 @@ | |||
1 | { mkDerivation, base, stdenv }: | ||
2 | mkDerivation { | ||
3 | pname = "trivstream"; | ||
4 | version = "0.0.0"; | ||
5 | src = ./.; | ||
6 | isLibrary = false; | ||
7 | isExecutable = true; | ||
8 | executableHaskellDepends = [ base ]; | ||
9 | description = "A trivial client & server for streaming audio over udp between pulseaudio & jack"; | ||
10 | license = stdenv.lib.licenses.gpl3; | ||
11 | } | ||