1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/gio-sharp/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

31 lines
680 B
Nix

{ stdenv, fetchFromGitHub, autoconf, automake, which, pkgconfig, mono, gtk-sharp-2_0 }:
stdenv.mkDerivation rec {
pname = "gio-sharp";
version = "0.3";
src = fetchFromGitHub {
owner = "mono";
repo = "gio-sharp";
rev = "${version}";
sha256 = "13pc529pjabj7lq23dbndc26ssmg5wkhc7lfvwapm87j711m0zig";
};
nativeBuildInputs = [ pkgconfig autoconf automake which ];
buildInputs = [ mono gtk-sharp-2_0 ];
dontStrip = true;
prePatch = ''
./autogen-2.22.sh
'';
meta = with stdenv.lib; {
description = "GIO API bindings";
homepage = https://github.com/mono/gio-sharp;
license = licenses.mit;
platforms = platforms.linux;
};
}