nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

dsf2flac: unstable-2018-01-02 → unstable-2021-07-31

Set artemist as maintainer as current one isn't active
Set platform to only x86-64_linux as others do not work

authored by

Artemis Tosini and committed by
Rick van Schijndel
69146c56 c4956c85

+5 -5
+5 -5
pkgs/applications/audio/dsf2flac/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "dsf2flac"; 6 - version = "unstable-2018-01-02"; 6 + version = "unstable-2021-07-31"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "hank"; 10 10 repo = pname; 11 - rev = "b0cf5aa6ddc60df9bbfeed25548e443c99f5cb16"; 12 - sha256 = "15j5f82v7lgs0fkgyyynl82cb1rsxyr9vw3bpzra63nacbi9g8lc"; 11 + rev = "6b109cd276ec7c7901f96455c77cf2d2ebfbb181"; 12 + sha256 = "sha256-VlXfywgYhI2QuGQvpD33BspTTgT0jOKUV3gENq4HiBU="; 13 13 }; 14 14 15 15 buildInputs = [ boost flac id3lib taglib zlib ]; ··· 28 28 description = "A DSD to FLAC transcoding tool"; 29 29 homepage = "https://github.com/hank/dsf2flac"; 30 30 license = licenses.gpl2; 31 - maintainers = with maintainers; [ dmrauh ]; 32 - platforms = with platforms; linux; 31 + maintainers = with maintainers; [ artemist ]; 32 + platforms = [ "x86_64-linux" ]; 33 33 }; 34 34 }