summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/dcadec
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2016-02-21 15:30:50 +0100
committerEdward Tjörnhammar <ed@cflags.cc>2016-02-21 15:32:12 +0100
commit8968a6e60476fd5160ee450e4ea7f9d69877fd8d (patch)
treeba8e7cbaafaf61b8af422aeee4b5b99ecfcfb3f6 /pkgs/development/tools/dcadec
parenta3017f92d845b9313dffdd3ed1ef5dcd4808d96a (diff)
dcadec: init at 0.2.0
Diffstat (limited to 'pkgs/development/tools/dcadec')
-rw-r--r--pkgs/development/tools/dcadec/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/tools/dcadec/default.nix b/pkgs/development/tools/dcadec/default.nix
new file mode 100644
index 000000000000..ba2c13fbc3b2
--- /dev/null
+++ b/pkgs/development/tools/dcadec/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = pname + "-" + version;
+ pname = "dcadec";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "foo86";
+ repo = pname;
+ rev = "v" + version;
+ sha256 = "07nd0ajizrp1w02bsyfcv18431r8m8rq8gjfmz9wmckpg7cxj2hs";
+ };
+
+ installPhase = "make PREFIX=/ DESTDIR=$out install";
+
+ meta = with stdenv.lib; {
+ description = "DTS Coherent Acoustics decoder with support for HD extensions.";
+ maintainers = with maintainers; [ edwtjo ];
+ homepage = http://github.com/foo86/dcadec;
+ license = licenses.lgpl21;
+ platforms = platforms.linux;
+ };
+} \ No newline at end of file