about summary refs log tree commit diff
path: root/pkgs/desktops/deepin/go-dbus-factory
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-09-08 12:35:45 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2018-09-08 12:35:45 -0300
commitc1d1207463d5894e17cc32c584eacea56faeaa97 (patch)
tree5456eb90f23226f90799d536160af49ee0249a3d /pkgs/desktops/deepin/go-dbus-factory
parent3f28e941e490c605d427342f0d85e0f7e3a0f2a0 (diff)
downloadnixlib-c1d1207463d5894e17cc32c584eacea56faeaa97.tar
nixlib-c1d1207463d5894e17cc32c584eacea56faeaa97.tar.gz
nixlib-c1d1207463d5894e17cc32c584eacea56faeaa97.tar.bz2
nixlib-c1d1207463d5894e17cc32c584eacea56faeaa97.tar.lz
nixlib-c1d1207463d5894e17cc32c584eacea56faeaa97.tar.xz
nixlib-c1d1207463d5894e17cc32c584eacea56faeaa97.tar.zst
nixlib-c1d1207463d5894e17cc32c584eacea56faeaa97.zip
go-dbus-factory: init at 0.0.7.1
Diffstat (limited to 'pkgs/desktops/deepin/go-dbus-factory')
-rw-r--r--pkgs/desktops/deepin/go-dbus-factory/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/desktops/deepin/go-dbus-factory/default.nix b/pkgs/desktops/deepin/go-dbus-factory/default.nix
new file mode 100644
index 000000000000..a488bd7202cb
--- /dev/null
+++ b/pkgs/desktops/deepin/go-dbus-factory/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "${pname}-${version}";
+  pname = "go-dbus-factory";
+  version = "0.0.7.1";
+
+  src = fetchFromGitHub {
+    owner = "linuxdeepin";
+    repo = pname;
+    rev = version;
+    sha256 = "0gj2xxv45gh7wr5ry3mcsi46kdsyq9nbd7znssn34kapiv40ixcx";
+  };
+
+  makeFlags = [
+    "PREFIX=$(out)"
+  ];
+
+  meta = with stdenv.lib; {
+    description = "GoLang DBus factory for the Deepin Desktop Environment";
+    homepage = https://github.com/linuxdeepin/go-dbus-factory;
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ romildo ];
+  };
+}