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

Configure Feed

Select the types of activity you want to include in your feed.

pmount: add debian patches; fix gcc-14 build

https://salsa.debian.org/debian/pmount/-/tree/debian/master/debian/patches

+30
+30
pkgs/by-name/pm/pmount/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 + fetchpatch, 5 6 intltool, 6 7 ntfs3g, 7 8 util-linux, ··· 22 21 url = "mirror://debian/pool/main/p/pmount/pmount_${version}.orig.tar.bz2"; 23 22 sha256 = "db38fc290b710e8e9e9d442da2fb627d41e13b3ee80326c15cc2595ba00ea036"; 24 23 }; 24 + 25 + patches = 26 + let 27 + # https://salsa.debian.org/debian/pmount/-/tree/debian/master/debian/patches 28 + fetchDebPatch = 29 + { name, hash }: 30 + fetchpatch { 31 + inherit name hash; 32 + url = "https://salsa.debian.org/debian/pmount/-/raw/ba05283d4a53aba5349d4397a98d9f45206fb29f/debian/patches/${name}"; 33 + }; 34 + in 35 + map fetchDebPatch [ 36 + { 37 + name = "10_fix-spelling-binary-errors.patch"; 38 + hash = "sha256-G4GsUe1ZdYB7Qv333X1hUjOELITR8A2pqyfEnMDTwHI="; 39 + } 40 + { 41 + name = "20_fix-spelling-manpage-error.patch"; 42 + hash = "sha256-9phF8s7MFSjkhPP24cipeBUps5W1L7YmAE0B1QPx5jk="; 43 + } 44 + { 45 + name = "fix-implicit-function-declaration.patch"; 46 + hash = "sha256-kdwdS9G1X5RtQFKzF6oMIUubGNP7n1ZQNHu8sN1oV4Q="; 47 + } 48 + { 49 + name = "30_exfat-support.patch"; 50 + hash = "sha256-kg9gLhOtdrEDlZfUnT910xI5rNR1zgKKRx2kvFQjbi8="; 51 + } 52 + ]; 25 53 26 54 nativeBuildInputs = [ 27 55 intltool