summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-07-02 11:07:38 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-07-02 11:10:26 +0200
commitc1ffc65d1a0fdcb69b447711f9896077df550dd7 (patch)
tree69d124e1fed0d3a8de59e1fdb27a072608a4f4e0 /pkgs/applications/audio
parentf7781f52933ff4a83d1396f6255dfa91e727dc7c (diff)
parenta22ba5f05b3fb1acd2ad870262a3583aee471c73 (diff)
downloadnixlib-c1ffc65d1a0fdcb69b447711f9896077df550dd7.tar
nixlib-c1ffc65d1a0fdcb69b447711f9896077df550dd7.tar.gz
nixlib-c1ffc65d1a0fdcb69b447711f9896077df550dd7.tar.bz2
nixlib-c1ffc65d1a0fdcb69b447711f9896077df550dd7.tar.lz
nixlib-c1ffc65d1a0fdcb69b447711f9896077df550dd7.tar.xz
nixlib-c1ffc65d1a0fdcb69b447711f9896077df550dd7.tar.zst
nixlib-c1ffc65d1a0fdcb69b447711f9896077df550dd7.zip
Merge branch 'master' into staging
This apparently fixes some broken src fetches (gnuradio, twisted).
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/sidplayfp/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/audio/sidplayfp/default.nix b/pkgs/applications/audio/sidplayfp/default.nix
new file mode 100644
index 000000000000..2495759593cf
--- /dev/null
+++ b/pkgs/applications/audio/sidplayfp/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, pkgconfig, libsidplayfp }:
+
+stdenv.mkDerivation rec {
+  version = "1.4.3";
+  name = "sidplayfp-${version}";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/sidplay-residfp/sidplayfp/1.4/${name}.tar.gz";
+    sha256 = "04gqhxs4w0riabp1svgcs6gsxdmbfmrs4kaqr5lifvxjvv03vzsn";
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ libsidplayfp ];
+
+  meta = with stdenv.lib; {
+    description = "A SID player using libsidplayfp";
+    homepage = https://sourceforge.net/projects/sidplay-residfp/;
+    license = with licenses; [ gpl2Plus ];
+    maintainers = with maintainers; [ dezgeg ];
+    platforms = with platforms; linux;
+  };
+}