summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-09-04 21:23:42 +0200
committerGitHub <noreply@github.com>2019-09-04 21:23:42 +0200
commit4622046a2feac470795b2eda09a564a72d997066 (patch)
treeaec2a089a999c9fabf2895c1e3472295f0b47e37 /pkgs/tools/audio
parent2245bc0618b898953ba99939583292b77303872f (diff)
parentdfea236a489be641e7f59fdb9cfd928c1f641cd2 (diff)
Merge pull request #68104 from peterhoeg/f/aucdtect
aucdtect: pname was wrong
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/aucdtect/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/tools/audio/aucdtect/default.nix b/pkgs/tools/audio/aucdtect/default.nix
index 21adf3b972a5..ad9d5fb86905 100644
--- a/pkgs/tools/audio/aucdtect/default.nix
+++ b/pkgs/tools/audio/aucdtect/default.nix
@@ -3,26 +3,29 @@
with lib;
stdenv.mkDerivation rec {
- pname = "aucdtext";
+ pname = "aucdtect";
version = "0.8-2";
src = fetchurl {
- url = "http://www.true-audio.com/ftp/aucdtect-${version}.i586.rpm";
+ url = "http://www.true-audio.com/ftp/${pname}-${version}.i586.rpm";
sha256 = "1lp5f0rq5b5n5il0c64m00gcfskarvgqslpryms9443d200y6mmd";
};
unpackCmd = "${rpmextract}/bin/rpmextract $src";
installPhase = ''
- mkdir -p $out/bin
- install -m755 local/bin/auCDtect $out/bin/aucdtect
+ runHook preInstall
+
+ install -Dm755 local/bin/auCDtect $out/bin/aucdtect
+
+ runHook postInstall
'';
dontStrip = true;
meta = with stdenv.lib; {
description = "Verify authenticity of lossless audio files";
- homepage = http://tausoft.org;
+ homepage = "http://tausoft.org";
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;