nixpkgs/pkgs/development/tools/gnome-desktop-testing/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

27 lines
724 B
Nix

{ stdenv, glib, autoreconfHook, pkgconfig, systemd, fetchgit }:
stdenv.mkDerivation rec {
version = "2018.1";
pname = "gnome-desktop-testing";
src = fetchgit {
url = https://gitlab.gnome.org/GNOME/gnome-desktop-testing.git;
rev = "v${version}";
sha256 = "1bcd8v101ynsv2p5swh30hnajjf6z8dxzd89h9racp847hgjgyxc";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ glib systemd ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "GNOME OSTree testing code";
homepage = https://live.gnome.org/Initiatives/GnomeGoals/InstalledTests;
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = [ maintainers.jtojnar ];
};
}