mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
21 lines
624 B
Nix
21 lines
624 B
Nix
{ lib, stdenv, fetchurl, which, gnome, autoconf, automake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-common";
|
|
version = "3.18.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-common/${lib.versions.majorMinor version}/gnome-common-${version}.tar.xz";
|
|
hash = "sha256-IlaeNwrnVeBFJ7djKL78THO2K/1KVySZ/eEWuDGK+M8=";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript { packageName = "gnome-common"; };
|
|
};
|
|
|
|
propagatedBuildInputs = [ which autoconf automake ]; # autogen.sh which is using gnome-common tends to require which
|
|
|
|
meta = with lib; {
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
}
|